home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Telecommunications / Utilities / Zmodem.doc < prev   
Encoding:
Text File  |  1987-09-08  |  79.0 KB  |  2,773 lines  |  [TEXT/ttxt]

  1.  
  2.  
  3.  
  4.      The ZMODEM Asynchronous Inter Application File Transfer Protocol
  5.  
  6.                               Chuck Forsberg
  7.  
  8.                            Omen Technology Inc
  9.  
  10.  
  11.                               Chuck Forsberg
  12.                            Omen Technology Inc
  13.                    17505-V Northwest Sauvie Island Road
  14.                           Portland Oregon 97231
  15.                            Voice: 503-621-3406
  16.             Modem (TeleGodzilla): 503-621-3746 Speed 1200,300
  17.                           Compuserve: 70007,2304
  18.                     UUCP: ...!tektronix!reed!omen!caf
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62. Chapter 0               Rev091186 Typeset 9-11-86                        1
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. Chapter 0               Rev091186 Typeset 9-11-86                        2
  71.  
  72.  
  73.  
  74. 1.  INTENDED AUDIENCE
  75.  
  76. This document is intended for telecommunications managers, systems
  77. programmers, and others who choose and implement asynchronous file
  78. transfer protocols over dial-up networks and related environments.
  79.  
  80.  
  81. 2.  EVOLUTION OF ZMODEM
  82.  
  83. In the beginning of ZMODEM development, we thought a few modifications to
  84. XMODEM might allow high performance over packet switched networks while
  85. preserving XMODEM's simplicity.
  86.  
  87. The initial concept would add a block number to the ACK and NAK signals
  88. used by XMODEM and YMODEM.  The resultant protocol would allow the sender
  89. to send more than one block before waiting for a response.
  90.  
  91. But how to add the block number to XMODEM's ACK and NAK?  Pure binary
  92. won't do, some combinations won't pass through networks and operating
  93. systems.  Other operating systems may not be able to recognize comething
  94. coming back unless a break signal or particular code is present.[1] Hmmm,
  95. this starts to sound like a PACKET, with variable preamble, encoded data,
  96. and an ending sequence, a far cry from XMODEM's simple ACK and NAK.
  97.  
  98. Managing the window[2] was another problem.  Experience gained in
  99. debugging The Source's SuperKermit protocol indicated a window size of
  100. about 1000 characters was needed at 1200 bps.  This extrapolates to the
  101. better part of 20000 characters at 19.2 kbps.  Much of the SuperKermit's
  102. complexity and debugging time centered around its ring buffering and
  103. window management.  There had to be an easier way to get the job done.
  104.  
  105. A sore point in XMODEM and YMODEM is error recovery.  More to the point,
  106. how can the receiver determine whether the sender has responded, or is
  107. ready to respond to, a retransmission request?  Y/YMODEM attacks the
  108. problem by throwing away characters until a certain period of silence.
  109. Too short a time allows a spurious pause in output (network or timesharing
  110. congestion) to pass as error recovery.  Too long a timeout devastates
  111. throughput, and allows a noisy line to lock up the protocol.  SuperKermit
  112. solves the problem with a distinct start of packet that does not appear
  113. anywhere else.  WXMODEM and ZMODEM use character sequences to delineate
  114. the start of frames.
  115.  
  116. A further error recovery problem arises in streaming protocols.  How does
  117.  
  118.  
  119. __________
  120.  
  121.  1. Without waiting for a response
  122.  
  123.  2. The WINDOW is the data in transit between sender and receiver.
  124.  
  125.  
  126.  
  127.  
  128. Chapter 2               Rev091186 Typeset 9-11-86                        2
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. Chapter 2               Rev091186 Typeset 9-11-86                        3
  137.  
  138.  
  139.  
  140. the receiver know when (or if) the sender has recognized its error signal?
  141. Is the next packet the correct response to the error signal?  Is it
  142. something left over "in the queue"?  Or is this new subpacket one of many
  143. that will have to be discarded bacause the sender did not receive the
  144. error signal?  How long should the receiver let this continue before
  145. sending another error signal?  How can the protocol prevent this from
  146. degenerating into an argument about mixed signals?
  147.  
  148. SuperKermit uses selective retransmission, so it can accept any good
  149. packet it receives.  Each time the SuperKermit receiver gets a data
  150. packet, it goes through a routine to decide which outstanding packet (if
  151. any) it "wants most" to receive, and asks for that one.
  152.  
  153. In the ZMODEM development, we decided to forgo the complexity of
  154. SuperKermit's selective retransmission scheme and its associated buffer
  155. management logic and memory requirements.
  156.  
  157. Another sore point with XMODEM (and WXMODEM) is the garbage added at the
  158. end of files.  This was accpetable with old CP/M files which had no exact
  159. length, but not with modern systems such as DOS and Unix.  YMODEM and FAST
  160. use file length information in the header block to trim the output file,
  161. but this causes data loss when transferring files that grow during a
  162. transfer.  In some cases, the file length may be unknown, as when data is
  163. obtained from a process.  Variable length data subpackets solve both of
  164. these problems.
  165.  
  166. Since some characters had to be escaped anyway, there wasn't any point
  167. wasting two bytes to represent packet length.  The length of data
  168. subpackets is denoted by ending each subpacket with an escape sequence
  169. analagous to BISYNC and HDLC.
  170.  
  171. The end result was a ZMOEM header containing a "frame type", four bytes of
  172. supervisory information, and its own CRC-16.  Data frames consist of a
  173. header followed by 1 or more data subpackets.  In the absence of
  174. transmission errors, an entire file can be sent in one data frame.
  175.  
  176. Since the sending system may be sensitive to numerous control characters
  177. or strip parity in the reverse data path, all of the headers sent by the
  178. receiver are encoded in hex.  A common lower level routine receives all
  179. headers, allowing the main program logic to deal with headers and data
  180. subpackets as objects.
  181.  
  182. With equivalent binary (efficient) and hex (network friendly) frames, the
  183. sending program can send an "invitation to receive" sequence to activate
  184. the receiver without undue concern of crashing the remote application with
  185. unexpected  control characters.
  186.  
  187. Going "back to scratch" in the protocol design presents an oppurtunity to
  188. steal good ideas from many sources and to add a few new ones.
  189.  
  190. From Kermit and UUCP comes the concept of an initial dialog to exchange
  191.  
  192.  
  193.  
  194. Chapter 2               Rev091186 Typeset 9-11-86                        3
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. Chapter 2               Rev091186 Typeset 9-11-86                        4
  203.  
  204.  
  205.  
  206. system parameters.
  207.  
  208. ZMODEM generalizes Compuserve B Protocol's host controlled transfers to
  209. single command AutoDownload and command downloading.  A Security Challenge
  210. discourages password hackers and Trojan Horse authors from abusing
  211. ZMODEM's power.
  212.  
  213. We were also keen to the pain and $uffering of legions of
  214. telecommunicators whose file transfers have been ruined by communications
  215. and timesharing faults.  ZMODEM's file transfer recovery and advanced file
  216. management are dedicated to these kindred comrades.
  217.  
  218. After ZMODEM had been operational a short time, Earl Hall pointed out the
  219. obvious: ZMODEM's user friendly AutoDownload is incomplete if the user
  220. must assign transfer options to both the sending and receiving programs.
  221. As a result, transfer options may be specified to the sending program,
  222. which passes them to the receiving program in the ZFILE header.
  223.  
  224.  
  225.  
  226. 3.  ACKNOWLEDGMENTS
  227.  
  228. Encouragement and suggestions by Thomas Buck, Ward Christensen, Earl Hall,
  229. Irv Hoff, Stuart Mathison, and John Wales, are gratefully acknowledged.
  230.  
  231.  
  232. 4.  RELATED DOCUMENTS
  233.  
  234. The following files may be useful while studying this document:
  235.  
  236. YMODEM.DOC Describes the XMODEM and YMODEM file transfer protocols
  237.  
  238. ZMODEM.H Provides definitions for the manifest constants referenced
  239.         herein.
  240.  
  241. RZ.C, SZ.C, RBSB.C Unix source code for operating ZMODEM programs.
  242.  
  243. RZ.1111, SZ.1111 Manual pages for rz and sz (Troff sources).
  244.  
  245. ZM.C, ZMODEM.H Operating system independent ZMODEM subroutines, header
  246.         file.
  247.  
  248.  
  249. 5.  ROSETTA STONE
  250.  
  251. Here are some definitions which reflect current vernacular in the computer
  252. media.  The attempt here is identify the file transfer protocol rather
  253. than specific programs.
  254.  
  255. Frame   A ZMODEM frame consists of a header and 0 or more data subpackets.
  256.  
  257.  
  258.  
  259.  
  260. Chapter 5               Rev091186 Typeset 9-11-86                        4
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. Chapter 5               Rev091186 Typeset 9-11-86                        5
  269.  
  270.  
  271.  
  272. XMODEM  refers to the original 1979 file transfer etiquette introduced by
  273.         Ward Christensen's 1979 MODEM2 program.  It's also called the
  274.         MODEM or MODEM2 protocol.  Some who are unaware of MODEM7's
  275.         unusual batch file mode call it MODEM7.  Other aliases include
  276.         "CP/M Users's Group" and "TERM II FTP 3".  This protocol is
  277.         supported by most communications programs because it is easy to
  278.         implement.
  279.  
  280. XMODEM/CRC replaces XMODEM's 1 byte checksum with a two byte Cyclical
  281.         Redundancy Check (CRC-16), improving error detection.
  282.  
  283. YMODEM  refers to the XMODEM/CRC protocol with the throughput and/or batch
  284.         transmission enhancements described in YMODEM.DOC.
  285.  
  286.  
  287. 6.  WHY DEVELOP ZMODEM????
  288.  
  289. Since its development half a decade ago, the Ward Christensen MODEM
  290. protocol has enabled a wide variety of computer systems to interchange
  291. data.  There is hardly a communications program that doesn't at least
  292. claim to support this protocol, now called XMODEM.
  293.  
  294. Advances in computing, modems and networking have spread the XMODEM
  295. protocol far beyond the micro to micro environment for which it was
  296. designed.  These application have exposed some weaknesses:
  297.  
  298.    o+ The user interface is suitable for computer hobbyists.  Multiple
  299.      commands must be keyboarded to transfer each file.
  300.  
  301.    o+ Since commands must be given to both programs, simple menu selections
  302.      are not possible.
  303.  
  304.    o+ The short block length causes throughput to suffer when used with
  305.      timesharing systems, packet switched networks, satellite circuits,
  306.      and buffered (error correcting) modems.
  307.  
  308.    o+ The 8 bit checksum and unprotected transactions allow undetected
  309.      errors and disrupted file transfers.
  310.  
  311.    o+ Only one file can be sent per command.  The file name has to be given
  312.      twice, first to the sending program and then again to the receiving
  313.      program.
  314.  
  315.    o+ The transmitted file accumulates as many as 127 bytes of garbage.
  316.  
  317.    o+ The modification date and other file attributes are lost.
  318.  
  319.    o+ XMODEM requires complete 8 bit transparency, all 256 codes.  XMODEM
  320.      will not operate over some networks that use ASCII flow control or
  321.      escape codes.  Setting pure transparency often disables important
  322.      network control functions for the duration of the call.
  323.  
  324.  
  325.  
  326. Chapter 6               Rev091186 Typeset 9-11-86                        5
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. Chapter 6               Rev091186 Typeset 9-11-86                        6
  335.  
  336.  
  337.  
  338. A number of other protocols have been developed over the years, but none
  339. have displaced XMODEM to date.
  340.  
  341.    o+ Lack of public domain documentation and example programs have kept
  342.      proprietary protocols such as MNP, Blast, and others tightly bound to
  343.      the fortunes of their suppliers.
  344.  
  345.    o+ Link level protocols such as X.25, X.PC, and MNP do not manage
  346.      application to application file transfers.
  347.  
  348.    o+ The Kermit protocol was developed to allow file transfers in
  349.      environments hostile to XMODEM.  The performance compromises
  350.      necessary to accommodate traditional mainframe environments limit
  351.      Kermit's efficiency.  Even with completely transparent channels,
  352.      Kermit control character quoting limits the efficiency of binary file
  353.      transfers to about 75 per cent.[1]
  354.  
  355.      Kermit Sliding Windows ("SuperKermit") improves throughput over
  356.      networks at the cost of increased complexity.  SuperKermit state
  357.      transitions are encoded in a special language "wart" which requires a
  358.      C compiler.  The SuperKermit C code requires full duplex
  359.      communications and the ability to check for the presence of
  360.      characters in the input queue, precluding its implementation on some
  361.      operating systems.
  362.  
  363.      A number of submodes are used in various Kermit programs, including
  364.      different methods of transferring binary files.  Two Kermit programs
  365.      will mysteriously fail to operate with each other if the user has not
  366.      correctly specified these submodes.
  367.  
  368. A number of extensions to the XMODEM protocol have been made under the
  369. collective name YMODEM.
  370.  
  371.  o+ YMODEM-k uses 1024 byte blocks to reduce the overhead from transmission
  372.    delays by 87 per cent compared to XMODEM, but network delays can still
  373.    degrade performance.  Some networks may not be transmit the 1024 byte
  374.    packets unmodified.
  375.  
  376.  o+ The handling of files that are not a multiple of 1024 or 128 bytes is
  377.    awkward, especially if the file length is not known, or changes during
  378.    transmission.
  379.  
  380.  o+ YMODEM----G provides efficient batch file transfers, preserving exact file
  381.    length and file modification date.  YMODEM----G is essentially insensitive
  382.    to network delays.  Because it does not support error recovery,
  383.  
  384.  
  385. __________
  386.  
  387.  1. Some Kermit programs support run length encoding.
  388.  
  389.  
  390.  
  391.  
  392. Chapter 6               Rev091186 Typeset 9-11-86                        6
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. Chapter 6               Rev091186 Typeset 9-11-86                        7
  401.  
  402.  
  403.  
  404.    YMODEM-g is usually used hardwired or with a reliable link level
  405.    protocol.  IF YMODEM-g detects a CRC error, data transfers are aborted.
  406.    YMODEM-g is easy to implement because it closely resembles XMODEM-CRC.
  407.  
  408. Another XMODEM "extension" is protocol cheating, referred to as "Turbo
  409. Download" and OVERTHRUSTER[2].  These sometimes improve XMODEM throughput
  410. by disabling error recovery.
  411.  
  412. The ZMODEM Protocol corrects the weaknesses described above while
  413. maintaining as much of XMODEM/CRC's simplicity and prior art as possible.
  414.  
  415.  
  416.  
  417. 7.  ZMODEM PROTOCOL DESIGN CRITERIA
  418.  
  419. The design of a file transfer protocol is an engineering compromise
  420. between conflicting requirements:
  421.  
  422. 7.1  EASE OF USE
  423.  
  424.  o+ ZMODEM allows either program to initiate file transfers, passing
  425.    commands and/or modifiers to the other program.
  426.  
  427.  o+ File names need be entered only once.
  428.  
  429.  o+ Menu selections are supported.
  430.  
  431.  o+ Wild Card names may be used with batch transfers.
  432.  
  433.  o+ Minimum keystrokes required to initiate transfers.
  434.  
  435.  o+ ZRQINIT frame sent by sending program can trigger automatic downloads.
  436.  
  437.  o+ ZMODEM can step down to X/YMODEM if the other end does not support
  438.    ZMODEM.[1]
  439.  
  440. 7.2  THROUGHPUT
  441.  
  442. ZMODEM is designed for optimum performance with almost no degradation
  443. caused by delays introduced by packet switched networks and timesharing
  444. systems.
  445.  
  446. ZMODEM is optimized for best throughput over networks where line hits
  447.  
  448.  
  449. __________
  450.  
  451.  2. Omen Technology Trademark
  452.  
  453.  1. Provided the transmission medium accommodates X/YMODEM.
  454.  
  455.  
  456.  
  457.  
  458. Chapter 7               Rev091186 Typeset 9-11-86                        7
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466. Chapter 7               Rev091186 Typeset 9-11-86                        8
  467.  
  468.  
  469.  
  470. occur infrequently.  This assumption markedly reduces code complexity and
  471. memory requirements.  ZMODEM protocol features enhance rapid error
  472. recovery compared to network compatible XMODEM implementations.
  473.  
  474. In the absence of network delays, error recovery is rapid, much faster
  475. than YMODEM or network compatible versions of XMODEM.
  476.  
  477. Many transfers will originate from a timesharing system connected to a
  478. packet switched network.  ZMODEM features allow simple, efficient
  479. implementation on a wide variety of timesharing hosts.
  480.  
  481. File transfers begin immediately regardless of which program is started
  482. first, without the 10 second delay associated with XMODEM.
  483.  
  484.  
  485. 7.3  INTEGRITY AND ROBUSTNESS
  486.  
  487. Once a ZMODEM session is begun, all transactions are protected with 16 bit
  488. CRC.[2] Complex proprietary techniques such as CYBERNETIC DATA
  489. RECOVERY((((TM))))[3] are not needed for reliable transfers.
  490.  
  491. A security challenge mechanism guards against "Trojan Horse" messages.
  492.  
  493. 7.4  EASE OF IMPLEMENTATION
  494.  
  495. ZMODEM accommodates a wide variety of systems:
  496.  
  497.  o+ Microcomputers that cannot overlap disk and serial i/o
  498.  
  499.  o+ Microcomputers that cannot overlap serial send and receive
  500.  
  501.  o+ Computers and/or networks requiring XON/XOFF flow control
  502.  
  503.  o+ Computers that cannot check the serial input queue for the presence of
  504.    data without having to wait for the data to arrive.
  505.  
  506. Although ZMODEM provides "hooks" for multiple "threads", ZMODEM is not
  507. intended to replace link level protocols such as X.25.
  508.  
  509. ZMODEM accommodates network and timesharing system delays by continuously
  510. transmitting data unless the receiver interrupts the sender to request
  511. retransmission of garbled data.  ZMODEM in effect uses the entire file as
  512. a window.[4]
  513.  
  514.  
  515. __________
  516.  
  517.  2. Except for the CAN-CAN-CAN-CAN-CAN abort sequence.
  518.  
  519.  3. Unique to Professional-YAM and PowerCom
  520.  
  521.  
  522.  
  523.  
  524. Chapter 7               Rev091186 Typeset 9-11-86                        8
  525.  
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532. Chapter 7               Rev091186 Typeset 9-11-86                        9
  533.  
  534.  
  535.  
  536. ZMODEM provides a general purpose application to application file transfer
  537. protocol which may be used directly or with with reliable link level
  538. protocols such as X.25, MNP, Fastlink, etc.  When used with X.25, MNP,
  539. Fastlink, etc., ZMODEM detects and corrects errors in the interfaces
  540. between error controlled media and the remainder of the communications
  541. link.
  542.  
  543.  
  544. 8.  ZMODEM REQUIREMENTS
  545.  
  546. ZMODEM requires an 8 bit transfer medium.  ZMODEM escapes network control
  547. characters to allow operation with packet switched networks.  In general,
  548. ZMODEM operates over any path that supports XMODEM, and over some that
  549. don't.
  550.  
  551. To support full streaming, the path should either assert flow control[1]
  552. or pass full speed transmission without loss of data.
  553.  
  554. 8.1  FILE CONTENTS
  555.  
  556. ZMODEM places no constraints on the information content of binary files,
  557. except that the number of bits in the file must be a multiple of 8.
  558.  
  559. Since ZMODEM is used to transfer files between different types of computer
  560. systems, text files must meet minimum requirements if they are to be
  561. readable on a wide variety of systems and environments.
  562.  
  563. Text lines consist of printing ASCII characters, spaces, tabs, and
  564. backspaces.
  565.  
  566. Overstruck characters may be generated by backspacing or by overprinting
  567. the line with CR (015) not followed by LF.
  568.  
  569. Overstruck characters generated with backspaces should be sent with the
  570. most important character last to accomodate CRT displays that cannot
  571. overstrike.  A text line is terminated by a CR/LF (015, 012) sequence, or
  572. by a NL (012) character.  The sending program may use the ZCNL bit to
  573. force the receiving program to convert the received end of line to its
  574. local end of line convention.
  575.  
  576. A CR (013) without a linefeed implies overprinting, and is not acceptable
  577. as a logical line separator.  Overprinted lines should print all important
  578. characters in the last pass to allow CRT displays to display meaningful
  579.  
  580.  
  581. __________________________________________________________________________
  582.  
  583.  4. Streaming strateges are discussed in coming chapters.
  584.  
  585.  1. With XOFF and XON, or out of band flow control such as X.25 or CTS
  586.  
  587.  
  588.  
  589.  
  590. Chapter 8               Rev091186 Typeset 9-11-86                        9
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598. Chapter 8               Rev091186 Typeset 9-11-86                       10
  599.  
  600.  
  601.  
  602. text.
  603.  
  604. N.B.:::: Files that have been translated in such a way as to modify their
  605. length cannot be updated with the ZCRECOV Conversion Option which allows
  606. interrupted transfers to be resumed without loss of data.
  607.  
  608.  
  609. 9.  ZMODEM BASICS
  610.  
  611. 9.1  PACKETIZATION
  612.  
  613. ZMODEM frames differ somewhat from X/YMODEM blocks.  X/YMODEM blocks are
  614. not used for the following reasons:
  615.  
  616.  o+ Block numbers are limited to 256
  617.  
  618.  o+ No provision for variable length blocks
  619.  
  620.  o+ Line hits corrupt protocol signals, causing failed file transfers.  In
  621.    particular, modem errors sometimes generate false block numbers, false
  622.    EOTs and false ACKs.  False ACKs are the most troublesome as they cause
  623.    the sender to lose synchronization with the receiver.
  624.  
  625.    State of the art X/YMODEM programs such as Professional-YAM and
  626.    PowerCom overcome some of these weaknesses with clever proprietary
  627.    code, but a stronger protocol is desired.
  628.  
  629.  o+ It is difficult to determine the beginning and ends of X/YMODEM blocks
  630.    when line hits cause a loss of synchronization.  This precludes rapid
  631.    error recovery.
  632.  
  633. 9.2  LINK ESCAPE ENCODING
  634.  
  635. ZMODEM achieves data transparency by extending the 8 bit character set
  636. (256 codes) with escape sequences based on the ZMODEM data link escape
  637. character ZDLE.[1]
  638.  
  639. Link Escape coding permits variable length data subpackets without the
  640. overhead of a separate byte count.  It allows the beginning of frames to
  641. be detected without special timing techniques, facilitating rapid error
  642. recovery.
  643.  
  644. Link Escape coding does add some overhead.  The worst case, a file
  645. consisting entirely of escaped characters, would incur a 50% overhead.
  646.  
  647.  
  648. __________
  649.  
  650.  1. This and other constants are defined in the zmodem.h include file.
  651.     Please note that constants with a leading 0 are octal constants in C.
  652.  
  653.  
  654.  
  655.  
  656. Chapter 9               Rev091186 Typeset 9-11-86                       10
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664. Chapter 9               Rev091186 Typeset 9-11-86                       11
  665.  
  666.  
  667.  
  668. The ZDLE character is special.  ZDLE represents a control sequence of some
  669. sort.  If a ZDLE character appears in binary data, it is prefixed with
  670. ZDLE, then sent as ZDLEE.
  671.  
  672. The value for ZDLE is octal 030 (ASCII CAN).  This particular value was
  673. chosen to allow a string of CAN characters to abort a ZMODEM session,
  674. compatible with X/YMODEM session abort.
  675.  
  676. Since CAN is not used in normal terminal operations, interactive
  677. applications and communications programs can monitor the data flow for
  678. ZDLE.  The following characters can be scanned to detect the ZRQINIT
  679. header, the invitation to automatically download commands or files.
  680.  
  681. Receipt of five successive CAN characters will abort a ZMODEM session.
  682. Eight CAN characters are sent.
  683.  
  684. The receiving program decodes any sequence of ZDLE followed by a byte with
  685. bit 6 set and bit 5 reset (upper case letter, either parity) to the
  686. equivalent control character by inverting bit 6.  This allows the
  687. transmitter to escape any control character that cannot be sent by the
  688. communications medium.  In addition, the receiver recognizes escapes for
  689. 0177 and 0377 should these characters need to be escaped.
  690.  
  691. By default, ZMODEM software currently escapes ZDLE, 020, 0220, 021, 0221,
  692. 023, and 0223.  If preceded by 0100 or 0300 (@), 015 and 0215 are also
  693. escaped to protect the Telenet command escape CR-@-CR.
  694.  
  695. The ZMODEM routines in zm.c accept an option to escape all control
  696. characters, to allow operation with less transparent networks.  The
  697. routines also accept an option to escape only the ZDLE character, for
  698. highest possible throughput.
  699.  
  700. 9.3  HEADER
  701.  
  702. All ZMODEM frames begin with a header which may be sent in binary or HEX
  703. form.  ZMODEM uses a single routine to recognize binary and hex headers.
  704. Either form of the header contains the same raw information:
  705.  
  706.  o+ A type byte[2] [3]
  707.  
  708.  
  709.  
  710.  
  711. __________
  712.  
  713.  2. The frame types are cardinal numbers beginning with 0 to minimize
  714.     state transition table memory requirements.
  715.  
  716.  3. Future extensions to ZMODEM may use the high order bits of the type
  717.     byte to indicate thread selection.
  718.  
  719.  
  720.  
  721.  
  722. Chapter 9               Rev091186 Typeset 9-11-86                       11
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730. Chapter 9               Rev091186 Typeset 9-11-86                       12
  731.  
  732.  
  733.  
  734.  o+ Four bytes of data indicating flags and/or numeric quantities depending
  735.    on the frame type
  736.  
  737.                    FIGURE 1111.  Order of Bytes in Header
  738.  
  739.                    TYPE:  frame type
  740.                    F0: Flags least significant byte
  741.                    P0: file Position least significant
  742.                    P3: file Position most significant
  743.  
  744.                            TYPE  F3 F2 F1 F0
  745.                            -------------------
  746.                            TYPE  P0 P1 P2 P3
  747.  
  748. 9.3.1  BINARY HEADER
  749. A binary header is only sent by the sending program to the receiving
  750. program.
  751.  
  752. A binary header begins with the sequence ZPAD, ZDLE, ZBIN.
  753.  
  754. The frame type byte is ZDLE encoded.
  755.  
  756. The four position/flags bytes are ZDLE encoded.
  757.  
  758. A two byte CRC of the frame type and position/flag bytes is ZDLE encoded.
  759.  
  760. 0 or more binary data subpackets will follow depending on the frame type.
  761.  
  762. The function zsbhdr transmits a binary header.  The function zgethdr
  763. receives a binary or hex header.
  764.  
  765.                          FIGURE 2222.  Binary Header
  766.             * ZDLE A TYPE F3/P0 F2/P1 F1/P2 F0/P3 CRC-1 CRC-2
  767.  
  768.  
  769. 9.3.2  HEX HEADER
  770. The receiver sends responses in hex headers.  The sender also uses hex
  771. headers when they are not followed by binary data subpackets.
  772.  
  773. Hex encoding accomodates XON/XOFF flow control.  The hex header receiving
  774. routine ignores flow control characters.
  775.  
  776. Use of Kermit style encoding for control and paritied characters was
  777. considered and rejected because of increased possibility of interacting
  778. with some timesharing systems's line edit functions.  Use of HEX headers
  779. from the receiving program allows control characters to be used to
  780. interrupt the sender when errors are detected.  Except for header types
  781. that imply data subpackets to follow, a HEX header may be used in place of
  782. a binary header wherever convenient.
  783.  
  784. A hex header begins with the sequence ZPAD, ZPAD, ZDLE, ZHEX.  The zgethdr
  785.  
  786.  
  787.  
  788. Chapter 9               Rev091186 Typeset 9-11-86                       12
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796. Chapter 9               Rev091186 Typeset 9-11-86                       13
  797.  
  798.  
  799.  
  800. routine synchronizes with the ZPAD-ZDLE sequence.  The extra ZPAD allows
  801. other parts of the program to detect a ZMODEM header and then call zgethdr
  802. to receive the header.
  803.  
  804. The type byte, the four position/flag bytes, and the CRC thereof are sent
  805. in hex using the character set 01234567890abcdef.  Upper case hex digits
  806. are not allowed; they false trigger X/YMODEM programs.
  807.  
  808. A carriage return, line feed, and XON[4] are appended to the HEX header
  809. but are not strictly a part of it.  The CR/LF aids debugging from
  810. printouts.  The XON releases the sender from spurious XOFF flow control
  811. characters generated by line noise, a common occurrence.
  812.  
  813. 0 or more ASCII Encoded data subpackets will follow depending on the frame
  814. type.
  815.  
  816. The function zshhdr sends a hex header.
  817.  
  818.                           FIGURE 3333.  HEX Header
  819.  
  820.       * * ZDLE B TYPE F3/P0 F2/P1 F1/P2 F0/P3 CRC-1 CRC-2 CR LF XON
  821.  
  822. (TYPE, F3...F0, CRC-1, and CRC-2 are each sent as two hex digits.)
  823.  
  824.  
  825. 9.4  BINARY DATA SUBPACKETS
  826.  
  827. Binary data subpackets immediately follow the associated binary header
  828. packet.  A binary data packet contains 0 to 1024 bytes of data.
  829. Recommended length values are 256 bytes below 4800 bps, 1024 above 4800
  830. bps or when the data link is known to be relatively error free.  Except
  831. for the last subpacket in a file,[5] lengths should be a power of two.
  832.  
  833. No padding is used with binary data subpackets.  The data bytes are ZDLE
  834. encoded and transmitted.  A ZDLE and frameend are then sent, followed by
  835. two ZDLE encoded CRC bytes.  The CRC accumulates the data bytes and
  836. frameend.
  837.  
  838. The function zsdata sends a data subpacket.  The function zrdata receives
  839. a data subpacket.
  840.  
  841.  
  842.  
  843.  
  844.  
  845. __________
  846.  
  847.  4. XON is not sent after a ZFIN header, to allow clean session cleanup.
  848.  
  849.  5. Or file segment if a sparse file is being processed
  850.  
  851.  
  852.  
  853.  
  854. Chapter 9               Rev091186 Typeset 9-11-86                       13
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862. Chapter 9               Rev091186 Typeset 9-11-86                       14
  863.  
  864.  
  865.  
  866. 9.5  ASCII ENCODED DATA SUBPACKET
  867.  
  868. The format of ASCII Encoded data subpackets is not currently specified.
  869. These would be used for server commands, or main transfers in 7 bit
  870. environments.
  871.  
  872.  
  873. 10.  PROTOCOL TRANSACTION OVERVIEW
  874.  
  875. As with the XMODEM recommendation, ZMODEM timing is receiver driven.  The
  876. transmitter should not time out at all, except to abort the program if no
  877. headers are received for an extended period of time, say one minute.[1]
  878.  
  879.  
  880. 10.1  SESSION STARTUP
  881.  
  882. To start a ZMODEM file transfer session, the sending program is called
  883. with the names of the desired file(s) and option(s).
  884.  
  885. The sending program may send the string "rz\r" to invoke the receiving
  886. program from a possible command mode.  The "rz" followed by carriage
  887. return activates a ZMODEM receive program or command if it were not
  888. already active.
  889.  
  890. The sender may then display a message intended for human consumption, such
  891. as a list of the files requested, etc.
  892.  
  893. Then the sender may send a ZRQINIT header.  The ZRQINIT header causes a
  894. previously started receive program to send its ZRINIT header without
  895. delay.
  896.  
  897. In an interactive or conversational mode, the receiving application may
  898. monitor the data stream for ZDLE.  The following characters may be scanned
  899. for B00000000 indicating a ZRQINIT header, a command to download a command or
  900. data.
  901.  
  902. The sending program awaits a command from the receiving program to start
  903. file transfers.  If a "C", "G", or NAK is received, an XMODEM or YMODEM
  904. file transfer is indicated, and file transfer(s) use the X/YMODEM
  905. protocol.  Note: With ZMODEM and YMODEM Batch, the sending program
  906. provides the file name, but not with XMODEM.
  907.  
  908. In case of garbled data, the sending program can repeat the invitation to
  909. receive a number of times until a session starts.
  910.  
  911.  
  912.  
  913. __________
  914.  
  915.  1. Special considerations apply when sending commands.
  916.  
  917.  
  918.  
  919.  
  920. Chapter 10              Rev091186 Typeset 9-11-86                       14
  921.  
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928. Chapter 10              Rev091186 Typeset 9-11-86                       15
  929.  
  930.  
  931.  
  932. When the ZMODEM receive program starts, it immediately sends a ZRINIT
  933. header to initiate ZMODEM file transfers, or a ZCHALLENGE header to verify
  934. the sending program.  The receive program resends its header at response
  935. time (default 10 second) intervals for a suitable period of time (40
  936. seconds total) before falling back to X/YMODEM protocol.
  937.  
  938. If the receiving program receives a ZRQINIT header, it resends the ZRINIT
  939. header.  If the sending program receives the ZCHALLENGE header, it places
  940. the data in ZP0...ZP3 in an answering ZACK header.
  941.  
  942. If the receiving program receives a ZRINIT header, it is an echo
  943. indicating that the sending program is not operational.
  944.  
  945. Eventually the sending program correctly receives the ZRINIT header.
  946.  
  947. The sender may then send an optional ZSINIT frame to define the receiving
  948. program's ATTN sequence.  The receiver sends a ZACK header in response,
  949. optionally containing the serial number of the receiving program, or 0.
  950.  
  951. 10.2  FILE TRANSMISSION
  952.  
  953. The sender then sends a ZFILE header with ZMODEM Conversion, Management,
  954. and Transport options[2] followed by a ZCRCW data subpacket containing the
  955. file name, file length, modification date, and other information identical
  956. to that used by YMODEM Batch.
  957.  
  958. The receiver examines the file name, length, and date information provided
  959. by the sender in the context of the specified transfer options, the
  960. current state of its file system(s), and local security requirements.  The
  961. receiving program should insure the pathname and options are compatible
  962. with its operating environment and local security requirements.
  963.  
  964. The receiver may respond with a ZSKIP header, which makes the sender
  965. proceed to the next file (if any) in the batch.
  966.  
  967.        If the receiver has a file with the same name and length,
  968.        it may respond with a ZCRC header, which requires the
  969.        sender to perform a CRC on the file and transmit the CRC in
  970.        a ZCRC header.  The receiver uses this information to
  971.        determine whether to accept the file or skip it.  This
  972.        sequence is triggered by the ZMCRC Management Option.[3]
  973.  
  974.  
  975. __________
  976.  
  977.  2. See below, under ZFILE header type.
  978.  
  979.  3. The type of CRC has not been determined yet.  The obvious choice of
  980.     the CRC-16 used to protect packets may not be optimum for detecting
  981.     differences between long files.  The fact that the file lengths are
  982.     identical may give some guidance to the selection of CRC.
  983.  
  984.  
  985.  
  986. Chapter 10              Rev091186 Typeset 9-11-86                       15
  987.  
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994. Chapter 10              Rev091186 Typeset 9-11-86                       16
  995.  
  996.  
  997.  
  998. A ZRPOS header from the receiver initiates transmission of the file data
  999. starting at the offset in the file specified in the ZRPOS header.
  1000. Normally the receiver specifies the data transfer begin begin at offset 0
  1001. in the file.
  1002.        The receiver may start the transfer further down in the
  1003.        file.  This allows a file transfer interrupted by a loss
  1004.        or carrier or system crash to be completed on the next
  1005.        connection without requiring the entire file to be
  1006.        retransmitted.[4] If downloading a file from a timesharing
  1007.        system that becomes sluggish, the transfer can be
  1008.        interrupted and resumed later with no loss of data.
  1009.  
  1010. The sender sends a ZDATA binary header (with file position) followed by
  1011. one or more data subpackets.
  1012.  
  1013. The receiver compares the file position in the ZDATA header with the
  1014. number of characters successfully received to the file.  If they do not
  1015. agree, a ZRPOS error response is generated to force the sender to the
  1016. right position within the file.[5]
  1017.  
  1018. A data subpacket terminated by ZCRCGO and CRC does not elicit a response
  1019. unless an error is detected; more data subpacket(s) follow immediately.
  1020.  
  1021.        ZCRCQ data subpackets expect a ZACK response with the
  1022.        receiver's file offset if no error, otherwise a ZRPOS
  1023.        response with the last good file offset.  Another data
  1024.        subpacket continues immediately.  ZCRCQ subpackets are
  1025.        not used if the receiver does not indicate FDX ability
  1026.        with the CANFDX bit.
  1027.  
  1028. ZCRCW data subpackets expect a response before the next frame is sent.
  1029. If the receiver does not indicate overlapped I/O capability with the
  1030. CANOVIO bit, or sets a buffer size, the sender uses the ZCRCW to allow
  1031. the receiver to write its buffer before sending more data.
  1032.  
  1033.        A zero length data frame may be used as an idle
  1034.        subpacket to prevent the receiver from timing out in
  1035.        case data is not immediately available to the sender.
  1036.  
  1037. In the absence of fatal error, the sender eventually encounters end of
  1038. file.  If the end of file is encountered within a frame, the frame is
  1039. closed with a ZCRCE data subpacket which does not elicit a response
  1040.  
  1041.  
  1042. __________
  1043.  
  1044.  4. This does not apply to files that have been translated.
  1045.  
  1046.  5. If the ZMSPARS option is used, the receiver instead seeks to the
  1047.     position given in the ZDATA header.
  1048.  
  1049.  
  1050.  
  1051.  
  1052. Chapter 10              Rev091186 Typeset 9-11-86                       16
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060. Chapter 10              Rev091186 Typeset 9-11-86                       17
  1061.  
  1062.  
  1063.  
  1064. except in case of error.
  1065.  
  1066. The sender sends a ZEOF header with the file ending offset equal to
  1067. the number of characters in the file.  The receiver compares this
  1068. number with the number of characters received.  If the receiver has
  1069. received all of the file, it closes the file.  If the file close was
  1070. satisfactory, the receiver responds with ZRINIT.  If the receiver has
  1071. not received all the bytes of the file, the receiver sends ZRPOS with
  1072. the current file offset, forcing the sender to resend the missing
  1073. data.  (If the receiver cannot properly close the file, a ZFERR header
  1074. is sent.)
  1075.  
  1076.        After all files are processed, any further protocol
  1077.        errors should not prevent the sending program from
  1078.        returning with a success status.
  1079.  
  1080.  
  1081. 10.3  SESSION CLEANUP
  1082.  
  1083. The sender closes the session with a ZFIN header.  The receiver
  1084. acknowledges this with its own ZFIN header.
  1085.  
  1086. When the sender receives the acknowledging header, it sends two
  1087. characters, "OO" (Over and Out) and exits to the operating system or
  1088. application that invoked it.  The receiver waits briefly for the "O"
  1089. characters, then exits whether they were received or not.
  1090.  
  1091. 10.4  SESSION CANCEL SEQUENCE
  1092.  
  1093. If the receiving program has been receiving data in streaming mode,
  1094. the ATTN sequence is executed to interrupt data transmission.  The
  1095. Cancel sequence of eight CAN characters[6] and ten backspace
  1096. characters is sent.
  1097.  
  1098.        static char canistr[] = {
  1099.         24,24,24,24,24,24,24,24,8,8,8,8,8,8,8,8,8,8,0
  1100.        };
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110. __________
  1111.  
  1112.  6. The trailing backspace characters attempt to erase the effects of the
  1113.     CAN characters if they are received by a command interpreter.
  1114.  
  1115.  
  1116.  
  1117.  
  1118. Chapter 10              Rev091186 Typeset 9-11-86                       17
  1119.  
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126. Chapter 10              Rev091186 Typeset 9-11-86                       18
  1127.  
  1128.  
  1129.  
  1130. 11.  STREAMING TECHNIQUES //// ERROR RECOVERY
  1131.  
  1132. It is a fact of life that no single method of streaming is applicable
  1133. to a majority of today's computing and telecommunications
  1134. environments.  ZMODEM provides several data streaming methods
  1135. selected according to the limitations of the sending environment,
  1136. receiving environment, and transmission channel(s).
  1137.  
  1138.  
  1139. 11.1  FULL STREAMING WITH SAMPLING
  1140.  
  1141. If the receiver can overlap serial I/O with disk I/O, and if the
  1142. sender can sample the reverse channel for the presence of data
  1143. without having to wait, full streaming can be used with no ATTN
  1144. sequence required.  The sender begins data transmission with a ZDATA
  1145. header and continuous ZCRCG data subpackets.  When the receiver
  1146. detects an error, it executes the ATTN sequence and then sends a
  1147. ZRPOS header with the correct position within the file.
  1148.  
  1149. At the end of each transmitted data subpacket, the sender checks for
  1150. the presence of an error header from the receiver.  To do this, the
  1151. sender samples the reverse data stream for the presence of either a
  1152. ZPAD or CAN character.  Any other character is ignored.[1]
  1153.  
  1154. ZPAD indicates some sort of error header from the receiver.  A CAN
  1155. suggests the user is attempting to "stop the bubble machine" by
  1156. keyboarding CAN characters.  If one of these characters is seen, an
  1157. empty ZCRCW data subpacket is sent to force the receiver to send a
  1158. ZACK header in case the ZPAD or CAN was spurious and the receiver was
  1159. still reading data subpackets.
  1160.  
  1161. Then the receiver's response header is read and acted upon.[2] A
  1162. ZRPOS header resets the sender's file offset to the correct position.
  1163. If a ZACK header is recieved, the reverse channel is sampled for the
  1164. possible presence of another header from the receiver.  If a ZRPOS
  1165. header is received, it is processed as above.  A ZFIN, ZABORT, or
  1166. TIMEOUT terminates the session; a ZSKIP terminates the processing of
  1167. this file.  Otherwise, transmission resumes at the (possibly reset)
  1168. file offset with a ZDATA header followed by data subpackets.
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175. __________
  1176.  
  1177.  1. The call to rdchk() in SZ.C performs this function.
  1178.  
  1179.  2. The call to getinsync() in SZ.C performs this function.
  1180.  
  1181.  
  1182.  
  1183.  
  1184. Chapter 11              Rev091186 Typeset 9-11-86                       18
  1185.  
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192. Chapter 11              Rev091186 Typeset 9-11-86                       19
  1193.  
  1194.  
  1195.  
  1196. 11.2  FULL STREAMING WITH REVERSE INTERRUPT
  1197.  
  1198. The above method cannot be used if the reverse data stream cannot be
  1199. sampled without entering an I/O wait.  An alternate method is to
  1200. instruct the receiver to interrupt the sending program when an error
  1201. is detected.
  1202.  
  1203. The receiver can interrupt the sender with a control character, break
  1204. signal, or combination thereof, as specified in the ATTN sequence.
  1205. After executing the ATTN sequence, the receiver sends a hex ZRPOS
  1206. header to force the sender to resend the lost data.
  1207.  
  1208. When the sending program responds to this interrupt, it reads a HEX
  1209. header (normally ZRPOS) from the receiver and takes the action
  1210. described in the previous section.  The Unix SZ.C program uses a
  1211. setjmp/longjmp call to catch the interrupt generated by the ATTN
  1212. sequence.  Catching the interrupt activates the getinsync() function
  1213. to read the receiver's error header and take appropriate action.
  1214.  
  1215. Unix SZ.C uses an ATTN sequence of Ctrl-C followed by a 1 second
  1216. pause to interrupt the sender, then give the sender (Unix) time to
  1217. prepare for the receiver's error header.
  1218.  
  1219.  
  1220. 11.3  FULL STREAMING WITH A SLIDING WINDOW
  1221.  
  1222. If none of the above methods is applicable, hope is not yet lost.  If
  1223. the sender can buffer responses from the receiver, the sender can use
  1224. ZCRCQ data subpackets to get ACKs from the receiver without
  1225. interrupting the transmission of data.  After a sufficient number of
  1226. ZCRCQ data subpackets have been sent, the sender can read one of the
  1227. headers that should have arrived in its receive interrupt buffer.
  1228.  
  1229. A problem with this method is the possibility of wasting an excessive
  1230. amount of time responding to the receiver's error header.  It may be
  1231. possible to program the reciever's ATTN sequence to flush the
  1232. sender's interrupt buffer before sending the ZRPOS header.
  1233.  
  1234. 11.4  FULL STREAMING OVER ERROR FREE CHANNELS
  1235.  
  1236. File transfer protocols predicated on the existence of an error free
  1237. end to end communications channel have been proposed from time to
  1238. time.  Such channels have proven to be more readily available in
  1239. theory than in actuality.
  1240.  
  1241. A ZMODEM sender assuming an error free channel with end to end flow
  1242. control can send the entire file in one frame without any checking of
  1243. the reverse stream.  If this channel is completely transparent, only
  1244. ZDLE need be escaped.  The resulting protocol overhead for average
  1245. long files is less than one per cent.[3]
  1246.  
  1247.  
  1248.  
  1249.  
  1250. Chapter 11              Rev091186 Typeset 9-11-86                       19
  1251.  
  1252.  
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258. Chapter 11              Rev091186 Typeset 9-11-86                       20
  1259.  
  1260.  
  1261.  
  1262. 11.5  SEGMENTED STREAMING
  1263.  
  1264. If the receiver cannot overlap serial and disk I/O, it uses the
  1265. ZRINIT frame to specify a buffer length which the sender will not
  1266. overflow.  The sending program sends a ZCRCW data subpacket and waits
  1267. for a ZACK header before sending the next segment of the file.
  1268.  
  1269. If the sending program supports reverse data stream sampling or
  1270. interrupt, error recovery will be faster (on average) than a protocol
  1271. (such as YMODEM) that sends large blocks.
  1272.  
  1273. A sufficiently large receiving buffer allows throughput to closely
  1274. approach that of full streaming.  For example, 16kb segmented
  1275. streaming adds about 3 per cent to full streaming ZMODEM file
  1276. transfer times when the round trip delay is five seconds.
  1277.  
  1278.  
  1279. 12.  ATTENTION SEQUENCE
  1280.  
  1281. The receiving program sends the ATTN sequence whenever it detects an
  1282. error and needs to interrupt the sending program.
  1283.  
  1284. The default ATTN string value is empty (no Attn sequence).  The
  1285. receiving program resets Attn to the empty default before each
  1286. transfer session.
  1287.  
  1288. The sender specifies the Attn sequence in its optional ZSINIT frame.
  1289. The ATTN string is terminated with a null.
  1290.  
  1291. Two meta-characters perform special functions:
  1292.  
  1293.    o+ \335 (octal) Send a break signal
  1294.  
  1295.    o+ \336 (octal) Pause one second
  1296.  
  1297.  
  1298. 13.  FRAME TYPES
  1299.  
  1300. The numeric values for the values shown in boldface are given in
  1301. zmodem.h.  Unused bits and unused bytes in the header (ZP0...ZP3) are
  1302. set to 0.
  1303.  
  1304.  
  1305.  
  1306.  
  1307. __________________________________________________________________________
  1308.  
  1309.  
  1310.  3. One in 256 for escaping ZDLE, about two in 1024 for data subpacket
  1311.     CRC's
  1312.  
  1313.  
  1314.  
  1315.  
  1316. Chapter 13              Rev091186 Typeset 9-11-86                       20
  1317.  
  1318.  
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324. Chapter 13              Rev091186 Typeset 9-11-86                       21
  1325.  
  1326.  
  1327.  
  1328. 13.1  ZRQINIT
  1329.  
  1330. Sent by the sending program, to trigger the receiving program to send
  1331. its ZRINIT header.  This avoids the aggravating startup delay
  1332. associated with XMODEM and Kermit transfers.  The sending program may
  1333. repeat the receive invitation (including ZRQINIT) if a response is
  1334. not obtained at first.
  1335.  
  1336. ZF0 contains ZCOMMAND if the program is attempting to send a command,
  1337. 0 otherwise.
  1338.  
  1339. 13.2  ZRINIT
  1340.  
  1341. Sent by the receiving program.  ZF0 and ZF1 contain the  bitwise or
  1342. of the receiver capability flags:
  1343. #define CANFDX  1 /* Receiver can send and receive simultaneously */
  1344. #define CANOVIO 2 /* Receiver can receive during disk I/O */
  1345. #define CANBRK  4 /* Rx can send a break signal */
  1346. #define CANCRY  8 /* Receiver can decrypt */
  1347.  
  1348. ZP0 and ZP1 contain the size of the receiver's buffer in bytes, or 0
  1349. if nonstop I/O is allowed.
  1350.  
  1351. 13.3  ZSINIT
  1352.  
  1353. Sender sends capability flags (currently all 0) (none currently
  1354. defined) followed by a binary data subpacket terminated with ZCRCW.
  1355. The data subpacket contains the null terminated ATTN sequence,
  1356. maximum length 32 bytes including the terminating null.
  1357.  
  1358. 13.4  ZACK
  1359.  
  1360. Acknowedgement to a ZSINIT frame, ZCHALLENGE header, or ZCRCW data
  1361. subpacket.  ZP0 to ZP3 contain file offset.  The response to
  1362. ZCHALLENGE contains the same 32 bit number received in the ZCHALLENGE
  1363. header.
  1364.  
  1365. 13.5  ZFILE
  1366.  
  1367. This frame denotes the beginning of a file transmission attempt.
  1368. ZF0, ZF1, and ZF2 may contain options.  A value of 0 in each of these
  1369. bytes implies no special treatment.  Options specified to the
  1370. receiver override options specified to the sender with the exception
  1371. of ZCBIN which overrides any other Conversion Option given to the
  1372. sender or receiver.
  1373.  
  1374.  
  1375. 13.5.1  ZF0000:::: CONVERSION OPTION
  1376. If the receiver does not recognize the Conversion Option, an
  1377. application dependent default conversion may apply.
  1378.  
  1379.  
  1380.  
  1381.  
  1382. Chapter 13              Rev091186 Typeset 9-11-86                       21
  1383.  
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390. Chapter 13              Rev091186 Typeset 9-11-86                       22
  1391.  
  1392.  
  1393.  
  1394. ZCBIN "Binary" transfer - inhibit conversion unconditionally
  1395.  
  1396. ZCNL Convert received end of line to local end of line
  1397.      convention.  The supported end of line conventions are
  1398.      CR/LF (most ASCII based operating systems except Unix
  1399.      and Macintosh), and NL (Unix).  Either of these two end
  1400.      of line conventions meet the permissible ASCII
  1401.      definitions for Carriage Return and Line Feed/New Line.
  1402.  
  1403. ZCRECOV Recover/Resume interrupted file transfer.  ZCREVOV is
  1404.      also useful for updating a remote copy of a file that
  1405.      grows without resending of old data.  If the destination
  1406.      file exists and is no longer than the source, append to
  1407.      the destination file and start transfer at the offset
  1408.      corresponding to the receiver's end of file.  This
  1409.      option does not apply if the source file is shorter.
  1410.      Files that have been converted (e.g., ZCNL) or subject
  1411.      to a single ended Transport Option cannot have their
  1412.      transfers recovered.
  1413.  
  1414. 13.5.2  ZF1111:::: MANAGEMENT OPTION
  1415. If the receiver does not recognize the Management Option, the
  1416. file should be transferred normally.
  1417.  
  1418. ZMNEW Transfer file if destination file absent.  Otherwise,
  1419.      transfer file overwriting destination if source file
  1420.      newer or longer.
  1421.  
  1422. ZMCRC Compare the source and destination files.  Transfer if
  1423.      file lengths or file polynomials differ.
  1424.  
  1425. ZMAPND Append source file contents to the end of the existing
  1426.      destination file (if any).
  1427.  
  1428. ZMCLOB Replace existing destination file (if any).
  1429.  
  1430. ZTSPARS Special processing for sparse file; each file segment
  1431.      is transmitted as a separate frame, where the frames are
  1432.      not necessarily contiguous.  The sender should end each
  1433.      segment with a ZCRCW (or possibly ZCRCQ) data subpacket
  1434.      and process the expected ZACK to insure no data is lost.
  1435.  
  1436. ZMDIFF Transfer file if destination file absent.  Otherwise,
  1437.      transfer file overwriting destination if files have
  1438.      different lengths or dates.
  1439.  
  1440. ZMPROT Protect destination file by transferring file only if
  1441.      the destination file is absent.
  1442.  
  1443.  
  1444.  
  1445.  
  1446.  
  1447.  
  1448. Chapter 13              Rev091186 Typeset 9-11-86                       22
  1449.  
  1450.  
  1451.  
  1452.  
  1453.  
  1454.  
  1455.  
  1456. Chapter 13              Rev091186 Typeset 9-11-86                       23
  1457.  
  1458.  
  1459.  
  1460. 13.5.3  ZF2222:::: TRANSPORT OPTION
  1461. If the receiver does not implement the particular transport
  1462. option, the file is copied without conversion for later
  1463. processing.
  1464.  
  1465. ZTLZW Lempel-Ziv compression.  Transmitted data will be
  1466.      identical to that produced by COMPRESS 4444.0000 operating on
  1467.      a computer with VAX byte ordering, using 12 bit
  1468.      encoding.
  1469.  
  1470. ZTCRYPT Encryption.  An initial null terminated string
  1471.      identifies the key.  Details to be determined.
  1472.  
  1473. ZTRLE Run Length encoding, Details to be determined.
  1474.  
  1475. A ZCRCW data subpacket follows with file name, file length,
  1476. modification date, and other information described in a later
  1477. chapter.
  1478.  
  1479. 13.6  ZSKIP
  1480.  
  1481. Sent by the receiver in response to ZFILE, makes the sender skip to
  1482. the next file.
  1483.  
  1484. 13.7  ZNAK
  1485.  
  1486. Indicates last header was garbled.  (See also ZRPOS).
  1487.  
  1488. 13.8  ZABORT
  1489.  
  1490. Sent by receiver to terminate batch file transfers when requested by
  1491. the user.  Sender responds with a ZFIN sequence.[1]
  1492.  
  1493. 13.9  ZFIN
  1494.  
  1495. Sent by sending program to terminate a ZMODEM session.  Receiver
  1496. responds with its own ZFIN.
  1497.  
  1498. 13.10  ZRPOS
  1499.  
  1500. Sent by receiver to force file transfer to resume at file offset
  1501. given in ZP0...ZP3.
  1502.  
  1503.  
  1504.  
  1505.  
  1506.  
  1507. __________
  1508.  
  1509.  1. Or ZCOMPL in case of server mode.
  1510.  
  1511.  
  1512.  
  1513.  
  1514. Chapter 13              Rev091186 Typeset 9-11-86                       23
  1515.  
  1516.  
  1517.  
  1518.  
  1519.  
  1520.  
  1521.  
  1522. Chapter 13              Rev091186 Typeset 9-11-86                       24
  1523.  
  1524.  
  1525.  
  1526. 13.11  ZDATA
  1527.  
  1528. ZP0...ZP3 contain file offset.  One or more data subpackets follow.
  1529.  
  1530. 13.12  ZEOF
  1531.  
  1532. Sender reports End of File.  ZP0...ZP3 contain the ending file
  1533. offset.
  1534.  
  1535. 13.13  ZFERR
  1536.  
  1537. Error in reading or writing file, protocol equivalent to ZABORT.
  1538.  
  1539. 13.14  ZCRC
  1540.  
  1541. Request (receiver) and response (sender) for file polynomial.
  1542. ZP0...ZP3 contain file polynomial.
  1543.  
  1544. 13.15  ZCHALLENGE
  1545.  
  1546. Request sender to echo a random number in ZP0...ZP3 in a ZACK frame.
  1547. Sent by the receiving program to the sending program to verify that
  1548. it is connected to an operating program, and was not activated by
  1549. spurious data or a Trojan Horse message.
  1550.  
  1551. 13.16  ZCOMPL
  1552.  
  1553. Request now completed.
  1554.  
  1555. 13.17  ZCAN
  1556.  
  1557. This is a pseudo frame type returned by gethdr() in response to a
  1558. Session Abort sequence.
  1559.  
  1560. 13.18  ZFREECNT
  1561.  
  1562. Sending program requests a ZACK frame with ZP0...ZP3 containing the
  1563. number of free bytes on the current file system.  A value of 0
  1564. represents an indefinite amount of free space.
  1565.  
  1566. 13.19  ZCOMMAND
  1567.  
  1568. ZCOMMAND is sent in a binary frame.  ZF0000 contains 0000 or ZCACK1111 (see
  1569. below).
  1570.  
  1571. A ZCRCW data subpacket follows, with the ASCII text command string
  1572. terminated with a NULL character.  If the command is intended to be
  1573. executed by the operating system hosting the receiving program
  1574. (e.g., "shell escape"), it must have "!" as the first character.
  1575. Otherwise the command is meant to be executed by the application
  1576. program which received the command.
  1577.  
  1578.  
  1579.  
  1580. Chapter 13              Rev091186 Typeset 9-11-86                       24
  1581.  
  1582.  
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588. Chapter 13              Rev091186 Typeset 9-11-86                       25
  1589.  
  1590.  
  1591.  
  1592. If the receiver detects an illegal or badly formed command, the
  1593. receiver immediately responds with a ZCOMPL header with an error
  1594. code in ZP0...ZP3.
  1595.  
  1596. If ZF0 contained ZCACK1111, the receiver immediately responds with a
  1597. ZCOMPL header with 0 status.
  1598.  
  1599. Otherwise, the receiver responds with a ZCOMPL header when the
  1600. operation is completed.  The exit status of the completed command is
  1601. stored in ZP0...ZP3.  A 0 exit status implies nominal completion of
  1602. the command.
  1603.  
  1604. If the command causes a file to be transmitted, the command sender
  1605. will see a ZRQINIT frame from the other computer attempting to send
  1606. data.
  1607.  
  1608. The sender examines ZF0 of the received ZRQINIT header to verify it
  1609. is not an echo of its own ZRQINIT header.  It is illegal for the
  1610. sending program to command the receiving program to send a command.
  1611.  
  1612. If the receiver program does not implement command downloading, it
  1613. should display the command to the standard error output, then return
  1614. a ZCOMPL header.
  1615.  
  1616.  
  1617.  
  1618. 14.  SESSION TRANSACTION EXAMPLES
  1619.  
  1620. 14.1  A SIMPLE FILE TRANSFER
  1621.  
  1622. A simple transaction, one file, no errors, no CHALLENGE, overlapped
  1623. I/O:
  1624.  
  1625. Sender         Receiver
  1626.  
  1627. "rz\r"
  1628. ZRQINIT(0)
  1629.                ZRINIT
  1630. ZFILE
  1631.                ZRPOS
  1632. ZDATA data ...
  1633. ZEOF
  1634.                ZRINIT
  1635. ZFIN
  1636.                ZFIN
  1637. OO
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643.  
  1644.  
  1645.  
  1646. Chapter 14              Rev091186 Typeset 9-11-86                       25
  1647.  
  1648.  
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654. Chapter 14              Rev091186 Typeset 9-11-86                       26
  1655.  
  1656.  
  1657.  
  1658. 14.2  CHALLENGE AND COMMAND DOWNLOAD
  1659.  
  1660.  
  1661. Sender         Receiver
  1662.  
  1663. "rz\r"
  1664. ZRQINIT(ZCOMMAND)
  1665.                ZCHALLENGE(rnd)
  1666. ZACK(rnd)
  1667.                ZRINIT
  1668. ZCOMMAND
  1669.                (Performs Command)
  1670.                ZCOMPL
  1671. ZFIN
  1672.                ZFIN
  1673. OO
  1674.  
  1675.  
  1676.  
  1677. 15.  ZFILE FRAME FILE INFORMATION
  1678.  
  1679. ZMODEM sends the same file information with the ZFILE frame data
  1680. that YMODEM Batch sends in its block 0.
  1681.  
  1682. N.B.:::: ONLY THE PATHNAME ((((FILE NAME)))) PART IS MANDATORY.
  1683.  
  1684. PATHNAME The pathname (conventionally, the file name) is sent as a
  1685.      null terminated ASCII string.  This is the filename format used
  1686.      by the handle oriented MSDOS(TM) functions and C library fopen
  1687.      functions.  An assembly language example follows:
  1688.                            DB     'foo.bar',0
  1689.      No spaces are included in the pathname.  Normally only the file
  1690.      name stem (no directory prefix) is transmitted unless the
  1691.      sender has selected YAM's F option to send the FULL relative
  1692.      pathname.  The source drive designator (A:, B:, etc.) is not
  1693.      sent.
  1694.  
  1695.      Filename Considerations:
  1696.  
  1697.         o+ File names should be translated to lower case unless the
  1698.           sending system supports upper/lower case file names.  This
  1699.           is a convenience for users of systems (such as Unix) which
  1700.           store filenames in upper and lower case.
  1701.  
  1702.         o+ The receiver should accommodate file names in lower and
  1703.           upper case.
  1704.  
  1705.         o+ When transmitting files between different operating
  1706.           systems, file names must be acceptable to both the sender
  1707.           and receiving operating systems.  If not, transformations
  1708.           should be applied to make the file names acceptable.  If
  1709.  
  1710.  
  1711.  
  1712. Chapter 15              Rev091186 Typeset 9-11-86                       26
  1713.  
  1714.  
  1715.  
  1716.  
  1717.  
  1718.  
  1719.  
  1720. Chapter 15              Rev091186 Typeset 9-11-86                       27
  1721.  
  1722.  
  1723.  
  1724.           the transformations are unsuccessful, an file name should
  1725.           be invented be the receiving program.
  1726.  
  1727.      If directories are included, they are delimited by /; i.e.,
  1728.      "subdir/foo" is acceptable, "subdir\foo" is not.
  1729.  
  1730. LENGTH The file length and each of the succeeding fields are
  1731.      optional.[1] The length field is stored as a decimal string
  1732.      counting the number of data bytes in the file.
  1733.  
  1734.      With ZMODEM, the receiver uses the file length as an estimate
  1735.      only.  It may be used to display an estimate of the
  1736.      transmission time, and may be compared with the amount of free
  1737.      disk space.  The actual length of the received file is
  1738.      determined by the data transfer.  A file may grow after
  1739.      transmission commences, and all the data will be sent.
  1740.  
  1741. MODIFICATION DATE A single space separates the modification date
  1742.      from the file length.
  1743.  
  1744.      The mod date is optional, and the filename and length may be
  1745.      sent without requiring the mod date to be sent.
  1746.  
  1747.      The mod date is sent as an octal number giving the time the
  1748.      CONTENTS of the file were last changed measured in seconds from
  1749.      Jan 1 1970 Universal Coordinated Time (GMT).  A date of 0
  1750.      implies the modification date is unknown and should be left as
  1751.      the date the file is received.
  1752.  
  1753.      This standard format was chosen to eliminate ambiguities
  1754.      arising from transfers between different time zones.
  1755.  
  1756.      Two Microsoft blunders complicate the use of modification dates
  1757.      in file transfers with MSDOS(TM) systems.  The first is the
  1758.      lack of timezone standardization in MS-DOS.  A file's creation
  1759.      time can not be known unless the timezone of the system that
  1760.      wrote the file[2] is known.  Unix solved this problem (for
  1761.      planet Earth, anyway) by stamping files with Universal Time
  1762.      (GMT).  Microsoft would have to include the timezone of origin
  1763.      in the directory entries, but does not.  Professional-YAM gets
  1764.      around this problem by using the Z parameter which is set to
  1765.      the number of minutes local time lags GMT.  For files known to
  1766.      originate from a different timezone, the ----ZT option may be used
  1767.  
  1768.  
  1769. __________
  1770.  
  1771.  1. Fields may not be skipped.
  1772.  
  1773.  2. Not necessarily that of the transmitting system!
  1774.  
  1775.  
  1776.  
  1777.  
  1778. Chapter 15              Rev091186 Typeset 9-11-86                       27
  1779.  
  1780.  
  1781.  
  1782.  
  1783.  
  1784.  
  1785.  
  1786. Chapter 15              Rev091186 Typeset 9-11-86                       28
  1787.  
  1788.  
  1789.  
  1790.      to specify T as the timezone for an individual file transfer.
  1791.  
  1792.      The second problem is the lack of a separate file creation date
  1793.      in DOS.  Since some backup schemes used with DOS rely on the
  1794.      file creation date to select files to be copied to the archive,
  1795.      back-dating the file modification date could interfere with the
  1796.      safety of the transferred files.  For this reason,
  1797.      Professional-YAM does not modify the date of received files
  1798.      with the header information unless the D parameter is non zero.
  1799.  
  1800.  
  1801. FILE MODE A single space separates the file mode from the
  1802.      modification date.  The file mode is stored as an octal string.
  1803.      Unless the file originated from a Unix system, the file mode is
  1804.      set to 0.  rz(1) checks the file mode for the 0x8000 bit which
  1805.      indicates a Unix type regular file.  Files with the 0x8000 bit
  1806.      set are assumed to have been sent from another Unix (or
  1807.      similar) system which uses the same file conventions.  Such
  1808.      files are not translated in any way.
  1809.  
  1810.  
  1811. SERIAL NUMBER A single space separates the serial number from the
  1812.      file mode.  The serial number of the transmitting program is
  1813.      stored as an octal string.  Programs which do not have a serial
  1814.      number should omit this field, or set it to 0.  The receiver's
  1815.      use of this field is optional.
  1816.  
  1817. The file information is terminated by a null.  If only the pathname
  1818. is sent, the pathname is terminated with TWO nulls.  The length of
  1819. the file information subpacket, including the trailing null, must
  1820. not exceed 1024 bytes; a typical length is less than 64 bytes.
  1821.  
  1822.  
  1823. 16.  PERFORMANCE RESULTS
  1824.  
  1825. 16.1  COMPATIBILITY
  1826.  
  1827. Extensive testing has demonstrated ZMODEM to be compatible with
  1828. satellite links, packet switched networks, microcomputers,
  1829. minicomputers, regular and error correcting buffered modems at 75 to
  1830. 19200 bps.  ZMODEM's marked economy of reverse channel bandwith
  1831. allows modems that dynamically partition bandwidth between the two
  1832. directions to operate at optimal speeds.
  1833.  
  1834. 16.2  THROUGHPUT
  1835.  
  1836. Between two single task PC-XT computers sending a program image on
  1837. an in house Telenet link, SuperKermit provided 72 ch/sec throughput
  1838. at 1200 baud.  YMODEM-k yielded 85 chars/sec, and ZMODEM provided
  1839. 113 chars/sec.  XMODEM was not measured, but would have been much
  1840. slower based on observed network propagation delays.
  1841.  
  1842.  
  1843.  
  1844. Chapter 16              Rev091186 Typeset 9-11-86                       28
  1845.  
  1846.  
  1847.  
  1848.  
  1849.  
  1850.  
  1851.  
  1852. Chapter 16              Rev091186 Typeset 9-11-86                       29
  1853.  
  1854.  
  1855.  
  1856. Recent tests downloading program images to an IBM PC (4.7 mHz V20)
  1857. running YAMK 15.68 with table driven CRC calculation yielded a
  1858. throughput of about 17kb on a 19.2 kb direct connection.
  1859.  
  1860. 16.3  ERROR RECOVERY
  1861.  
  1862. Some tests of ZMODEM protocol error recovery performance have been
  1863. made.  A PC-AT with SCO SYS V Xenix or DOS 3.1 was connected to a PC
  1864. with DOS 2.1 either directly at 9600 bps or with unbuffered dial-up
  1865. 1200 bps modems.  The ZMODEM software was configured to use 1024
  1866. byte data subpacket lengths above 2400 bps, 256 otherwise.
  1867.  
  1868. Because no time delays are necessary in normal file transfers, per
  1869. file negotiations are much faster than with YMODEM, the only
  1870. observed delay being the time required by the program(s) to update
  1871. logging files.
  1872.  
  1873. During a file transfer, a short line hit seen by the receiver
  1874. usually induces a CRC error.  The interrupt sequence is usually seen
  1875. by the sender before the next data subpacket is completely sent, and
  1876. the resultant loss of data throughput averages about half a data
  1877. subpacket per line hit.  At 1200 bps this is would be about .75
  1878. second lost per hit.  At 10-5 error rate, this would degrade
  1879. throughput by about 9 per cent.
  1880.  
  1881. The throughput degradation increases with channel delay, as data
  1882. subpackets in transit through the channel are discarded when an
  1883. error is detected.
  1884.  
  1885. A longer noise burst that affects both the receiver and the sender's
  1886. reception of the interrupt sequence usually causes the sender to
  1887. remain silent until the receiver times out in 10 seconds.  If the
  1888. round trip channel delay exceeds the receiver's 10 second timeout,
  1889. recovery from this type of error may become difficult.
  1890.  
  1891. Noise affecting only the sender is usually ignored, with one common
  1892. exception.  Spurious XOFF characters generated by noise stop the
  1893. sender until the receiver times out and sends an interrupt sequence
  1894. which concludes with an XON.
  1895.  
  1896. In summation, ZMODEM performance in the presence of errors resembles
  1897. that of X.PC and SuperKermit.  Short bursts cause minimal data loss.
  1898. Long bursts (such as pulse dialing noises) often require a timeout
  1899. error to restore the flow of data.
  1900.  
  1901.  
  1902.  
  1903.  
  1904.  
  1905.  
  1906.  
  1907.  
  1908.  
  1909.  
  1910. Chapter 17              Rev091186 Typeset 9-11-86                       29
  1911.  
  1912.  
  1913.  
  1914.  
  1915.  
  1916.  
  1917.  
  1918. Chapter 17              Rev091186 Typeset 9-11-86                       30
  1919.  
  1920.  
  1921.  
  1922. 17.  PACKET SWITCHED NETWORK CONSIDERATIONS
  1923.  
  1924. Flow control is necessary for printing messages and directories, and
  1925. for streaming file transfer protocols.  A non transparent flow
  1926. control is incompatible with XMODEM and YMODEM transfers.  XMODEM
  1927. and YMODEM protocols require complete transparency of all 256 8 bit
  1928. codes to operate properly.
  1929.  
  1930. The best flow control (when X.25 or hardware CTS is unavailable)
  1931. does not "eat" any characters at all.  When the PAD's buffer almost
  1932. fills up, an XOFF should be emitted.  When the buffer is no longer
  1933. nearly full, send an XON.  Otherwise, the network should neither
  1934. generate nor eat XON or XOFF control characters.
  1935.  
  1936. On Telenet, this can be met by setting CCIT X3 5:1 and 12:0 at BOTH
  1937. ends of the network.  For best throughput, parameter 64 (advance
  1938. ACK) should be set to something like 4.  Packets should be forwarded
  1939. when the packet is a full 128 bytes, or after a moderate delay
  1940. (3:0,4:10,6:0).
  1941.  
  1942. With PC-Pursuit, it is sufficient to set parameter 5 to 1 at both
  1943. ends.
  1944.  
  1945. For YMODEM, PAD buffering should guarantee that a minimum of 1040
  1946. characters can be sent in a burst without loss of data or generation
  1947. of flow control characters.  Failure to provide this buffering will
  1948. generate excessive retries with YMODEM.
  1949.  
  1950.                    TABLE 1111.  Flow Control Compatibility
  1951.  
  1952.          Connectivity            Interactive   XMODEM   KERMIT   ZMODEM
  1953.  
  1954. Direct Connection                YES           YES      YES      YES
  1955. Network, no flow control         NO            YES      (1)      (1)
  1956. Network, transparent f.c.        YES           YES      YES      YES
  1957. Network, semi-transparent f.c.   YES           NO       YES      YES
  1958. Network, 7 bit                   YES           NO       YES(2)   NO(3)
  1959.  
  1960. (1) Cannot operate in streaming mode.  Kermit is very slow because
  1961. of 96 byte max packet size.  ZMODEM can optimize burst length for
  1962. fastest transfers.
  1963.  
  1964. (2) Parity bits must be encoded, slowing binary transfers.
  1965.  
  1966. (3) Protocol extension possible for encoding data to 7 bits.
  1967.  
  1968.  
  1969.  
  1970.  
  1971.  
  1972.  
  1973.  
  1974.  
  1975.  
  1976. Chapter 18              Rev091186 Typeset 9-11-86                       30
  1977.  
  1978.  
  1979.  
  1980.  
  1981.  
  1982.  
  1983.  
  1984. Chapter 18              Rev091186 Typeset 9-11-86                       31
  1985.  
  1986.  
  1987.  
  1988. 18.  PERFORMANCE COMPARISON TABLES
  1989.  
  1990.  
  1991. "Round Trip Delay Time" includes the time for the last byte in a
  1992. packet to propagate through the operating systems and network to the
  1993. receiver, plus the time for the receiver's response to that packet
  1994. to propagate back to the sender.
  1995.  
  1996. The figures shown below are calculated for round trip delay times of
  1997. 40 milliseconds and 5 seconds.  Shift registers in the two computers
  1998. and a pair of 212 modems generate a round trip delay time on the
  1999. order of 40 milliseconds.  Operation with busy timesharing computers
  2000. and networks can easily generate round trip delays of five seconds.
  2001. Because the round trip delays cause visible interruptions of data
  2002. transfer when using XMODEM protocol, the subjective effect of these
  2003. delays is greatly exaggerated, especially when the user is paying
  2004. for connect time.
  2005.  
  2006. A 102400 byte binary file with randomly distributed codes is sent at
  2007. 1200 bps 8 data bits, 1 stop bit.  The calculations assume no
  2008. transmission errors.  For each of the protocols, only the per file
  2009. functions are considered.  Processor and I/O overhead are not
  2010. included.  YM-k refers to YMODEM with 1024 byte data packets.  YM-g
  2011. refers to the YMODEM "g" option.  ZMODEM uses 256 byte data
  2012. subpackets for this example.  SuperKermit uses maximum packet size,
  2013. 8 bit transparent transmission, no run length compression.  The 4
  2014. block WXMODEM window is too small to span the 5 second delay in this
  2015. example; the resulting thoughput degradation is ignored.
  2016.  
  2017. For comparison, a straight "dump" of the file contents with no file
  2018. management or error checking takes 853 seconds.
  2019.  
  2020.                  TABLE 2222.  Protocol Overhead Information
  2021.            (102400 byte binary file, 5 Second Round Trip)
  2022.  
  2023.       Protocol          XMODEM   YM-k    YM-g   ZMODEM   SKermit WXMODEM
  2024.  
  2025. Protocol Round Trips    804      104     5      5        5                 4
  2026. Trip Time at 40ms       32s      4s      0      0        0                 0
  2027. Trip Time at 5s         4020s    520s    25s    25s      25                20
  2028.  
  2029. Overhead Characters     4803     603     503    3600     38280             8000
  2030.  
  2031. Transfer Time at 0s     893s     858s    857s   883s     1172s             916s
  2032. Transfer Time at 40ms   925s     862s    857s   883s     1172s             916s
  2033. Transfer Time at 5s     5766s    1378s   882s   918s     1197s             936s
  2034.  
  2035.  
  2036.  
  2037.  
  2038.  
  2039.  
  2040.  
  2041.  
  2042. Chapter 18              Rev091186 Typeset 9-11-86                       31
  2043.  
  2044.  
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050. Chapter 18              Rev091186 Typeset 9-11-86                       32
  2051.  
  2052.  
  2053.  
  2054.                  FIGURE 4444.  Transmission Time Comparison
  2055.            (102400 byte binary file, 5 Second Round Trip)
  2056.  
  2057. ************************************************** XMODEM
  2058. ************ YMODEM-K
  2059. ********** SuperKermit (Sliding Windows)
  2060. ******* ZMODEM 16kb Segmented Streaming
  2061. ******* ZMODEM Full Streaming
  2062. ******* YMODEM-G
  2063.  
  2064.         TABLE 3333.  Local Timesharing Computer Download Performance
  2065.  
  2066.     Command       Protocol   Time/HD   Time/FD   Throughput   Efficiency
  2067.  
  2068. kermit -x         Kermit     1:49      2:03      327          34%
  2069. sz -Xa phones.t   XMODEM     1:20      1:44      343          36%
  2070. sz -a phones.t    ZMODEM      :39       :48      915          95%
  2071.  
  2072.  
  2073. Times were measured downloading a 35721 character text file at 9600
  2074. bps, from Santa Cruz SysV 2.1.2 Xenix on a 9 mHz IBM PC-AT to DOS
  2075. 2.1 on an IBM PC.  Xenix was in multiuser mode but otherwise idle.
  2076. Transfer times to PC hard disk and floppy disk destinations are
  2077. shown.
  2078.  
  2079. C-Kermit 4.2(030) used server mode and file compression, sending to
  2080. Pro-YAM 15.52 using 0 delay and a "get phones.t" command.
  2081.  
  2082. Crosstalk 3.6 used XMODEM 8 bit checksum (CRC not available) and an
  2083. "ESC rx phones.t" command.  The Crosstalk time does NOT include the
  2084. time needed to enter the extra commands not needed by Kermit and
  2085. ZMODEM.
  2086.  
  2087. Professional-YAM used ZMODEM AutoDownload.  ZMODEM times included a
  2088. security challenge of the sending program.
  2089.  
  2090.  
  2091.  
  2092.  
  2093.  
  2094.  
  2095.  
  2096.  
  2097.  
  2098.  
  2099.  
  2100.  
  2101.  
  2102.  
  2103.  
  2104.  
  2105.  
  2106.  
  2107.  
  2108. Chapter 18              Rev091186 Typeset 9-11-86                       32
  2109.  
  2110.  
  2111.  
  2112.  
  2113.  
  2114.  
  2115.  
  2116. Chapter 18              Rev091186 Typeset 9-11-86                       33
  2117.  
  2118.  
  2119.  
  2120.                        TABLE 4444.  Protocol Checklist
  2121.  
  2122. Item                  FAST   XMODEM  WXM   YMDM-k  YMDM-g  ZMODEM  SKermit
  2123.  
  2124. IN SERVICE            NO     1979    NO    1982    1985    1986    1985
  2125.  
  2126. USER FEATURES
  2127. User Friendly I/F     -      -       -     -       -       YES     -
  2128. Commands/batch        2      2*N     2*N   2       2       1       1(1)
  2129. Commands/file         0      2       2     0       0       0       0
  2130. Command Download      -      -       -     -       -       YES     YES(6)
  2131. Menu Compatible       -      -       -     -       -       YES     -
  2132. Transfer Recovery     -      -       -     -       -       YES     -
  2133. File Management       -      -       -     -       -       YES     -
  2134. Security Check        -      -       -     -       -       YES     -
  2135. X/YMODEM Fallback     -      YES     YES   -       -       YES     -
  2136.  
  2137. COMPATIBILITY
  2138. Dynamic Files         FAIL   YES     YES   FAIL    FAIL    YES     YES
  2139. Packet SW NETS        -      -       YES   -       -       YES     YES
  2140. 7 bit PS NETS         -      -       -     -       -       (8)     YES
  2141. Old Mainframes        -      -       -     -       -       (8)     YES
  2142. CP/M-80               -      YES     YES   YES     -       YES(9)  -
  2143.  
  2144. ATTRIBUTES
  2145. Reliability(5)        FAIL   fair    ???   fair    FAIL    HIGH    HIGH
  2146. Streaming             YES    -       YES   -       YES     YES     YES
  2147. Overhead(2)           0%     7%      7%    1%      1%      1%      30%
  2148. Faithful Xfers        YES    -       -     YES(3)  YES(3)  YES     YES
  2149. Preserve Date         NO(7)  -       -     YES     YES     YES     -
  2150.  
  2151. COMPLEXITY
  2152. CRC-16                REQD   -       REQD  REQD    REQD    REQD    opt
  2153. 32 bit math           REQD   -       -     (3)     (3)     REQD    -
  2154. No-Wait Sample        -      -       REQD  -       -       opt     REQD
  2155. Ring Buffers          -      -       REQD  -       -       opt     REQD
  2156. XMODEM Similar        NONE   YES     LOW   HIGH    HIGH    LOW     NONE
  2157. Complexity            MED    LOW(5)  MED   LOW(5)  LOW     MED     HIGH
  2158.  
  2159. EXTENSIONS
  2160. Server Operation      -      -       -     -       -       YES(4)  YES
  2161. Multiple Threads      -      -       -     -       -       future  -
  2162.  
  2163. NOTES:
  2164. (1) Server mode only
  2165. (2) Character count, binary file, transparent channel
  2166. (3) 32 bit math needed for accurate transfer (no garbage added)
  2167. (4) AutoDownload operation
  2168. (5) X/YMODEM Reliability enhancemnets greatly add to complexity
  2169. (6) Server commands only
  2170. (7) No provision for transfers across time zones
  2171.  
  2172.  
  2173.  
  2174. Chapter 18              Rev091186 Typeset 9-11-86                       33
  2175.  
  2176.  
  2177.  
  2178.  
  2179.  
  2180.  
  2181.  
  2182. Chapter 18              Rev091186 Typeset 9-11-86                       34
  2183.  
  2184.  
  2185.  
  2186. (8) Future enhancement provided for
  2187. (9) With Segmented Streaming
  2188. WXM: XMODEM derivative with data encoding and Windowing
  2189. FAST: File transfer protocol requiring end-to-end 8-bit transparent,
  2190. error free communications.
  2191.  
  2192.  
  2193.  
  2194. 19.  FUTURE EXTENSIONS
  2195.  
  2196. Future extensions include:
  2197.  
  2198.    o+ Compatibility with 7 bit networks
  2199.  
  2200.    o+ Server/Link Level operation: An END-TO-END error corrected
  2201.      program to program session is required for financial and other
  2202.      sensitive applications.
  2203.  
  2204.    o+ 32 bit CRC: for sensitive applications
  2205.  
  2206.    o+ Multiple independent threads
  2207.  
  2208.    o+ Encryption
  2209.  
  2210.    o+ Compression
  2211.  
  2212.    o+ File Comparision
  2213.  
  2214.    o+ Selective transfer within a file (e.g., modified segments of a
  2215.      database file).
  2216.  
  2217.  
  2218. 20.  REVISIONS
  2219.  
  2220. 9-11-86:  ZMPROT file management option added.  8-20-86:  More
  2221. performance data included.  8-4-86:  ASCII DLE (Ctrl-P, 020) now
  2222. escaped; compatible with previous versions.  More document revisions
  2223. for clarity.
  2224.  
  2225. 7-15-86: This document was extensively edited to improve clarity and
  2226. correct small errors.  The definition of the ZMNEW management option
  2227. was modified, and the ZMDIFF management option was added.  The
  2228. cancel sequence was changed from two to five CAN characters after
  2229. spurious two character cancel sequences were detected.
  2230.  
  2231.  
  2232.  
  2233.  
  2234.  
  2235.  
  2236.  
  2237.  
  2238.  
  2239.  
  2240. Chapter 21              Rev091186 Typeset 9-11-86                       34
  2241.  
  2242.  
  2243.  
  2244.  
  2245.  
  2246.  
  2247.  
  2248. Chapter 21              Rev091186 Typeset 9-11-86                       35
  2249.  
  2250.  
  2251.  
  2252. 21.  MORE INFORMATION
  2253.  
  2254. More information may be obtained by calling TeleGodzilla at
  2255. 503-621-3746.
  2256.  
  2257. UUCP sites can obtain the nroff/troff source to this file with
  2258.           uucp omen!/usr/caf/public/zmodem/zmodem.mm /tmp
  2259.  
  2260. A continually updated list of available files is stored in
  2261. /usr/spool/uucppublic/FILES.
  2262.  
  2263. The following L.sys line allows UUCP to call site "omen" via Omen's
  2264. bulletin board system "TeleGodzilla".  TeleGodzilla uses Pro-YAM in
  2265. host operation.
  2266.  
  2267. In response to TeleGodzilla's "Name Please:" uucico gives the
  2268. Pro-YAM "link" command as a user name.  The password (Giznoid)
  2269. controls access to the Xenix system connected to the IBM PC's other
  2270. serial port.  Communications between Pro-YAM and Xenix use 9600 bps;
  2271. YAM converts this to the caller's speed.
  2272.  
  2273. Finally, the calling uucico logs in as uucp.
  2274.  
  2275.  
  2276. omen Any ACU 1200 1-503-621-3746 e:--e: link d: Giznoid n:--n: uucp
  2277.  
  2278.  
  2279.  
  2280. 22.  ZMODEM PROGRAMS
  2281.  
  2282. A copy of this document, a demonstration version of
  2283. Professional-YAM, a flash-up tree structured help file and
  2284. processor, are available in ZMODEM.ARC on TeleGodzilla.  This file
  2285. must be unpacked with ARC-E.COM compatible with ARC5x files.  ARC-
  2286. E.COM is also available on TeleGodzilla.
  2287.  
  2288. Source code and manual pages for UNIX programs are available on
  2289. TeleGodzilla in RZSZ1.SHQ and RZSZ2.SHQ, squeezed "shell archives".
  2290. To use these files, unsqueeze them with YAMDEMO's "usq" command,
  2291. upload them to Unix, and then execute them as shell scripts to break
  2292. them into the program and documentation source files.  More detailed
  2293. instructions may be found in Chapter 8 of the Professional-YAM
  2294. User's manual.  Most Unix like systems are supported, including V7,
  2295. Sys III, 4.x BSD, SYS V, Idris, Coherent, and Regulus.
  2296.  
  2297. 22.1  ADDING ZMODEM TO DOS PROGRAMS
  2298.  
  2299. DOS programs such as bulletin boards may call YAMDEMO.EXE with the
  2300. DOS EXEC function to support fast, reliable ZMODEM file transfers.
  2301. This method allows program developers to add ZMODEM support with a
  2302. minimum of software development at the expense of higher memory
  2303.  
  2304.  
  2305.  
  2306. Chapter 22              Rev091186 Typeset 9-11-86                       35
  2307.  
  2308.  
  2309.  
  2310.  
  2311.  
  2312.  
  2313.  
  2314. Chapter 22              Rev091186 Typeset 9-11-86                       36
  2315.  
  2316.  
  2317.  
  2318. utilization than built-in routines.
  2319.  
  2320. YAMDEMO.EXE beginning with Version 15.61 include an xmodem command
  2321. which performs the following functions:
  2322.  
  2323.  o+ Sets restricted opertaion, restricting pathnames and disallowing
  2324.    modification of existing files
  2325.  
  2326.  o+ Causes error messages to be sent to the modem
  2327.  
  2328.  o+ Forces an exit after the command is finished
  2329.  
  2330. When YAMDEMO.EXE is used in this way, the default setup file
  2331. DEMOPHON.T should be overriden with the DOS environment variable
  2332. PHONES:
  2333.                       set PHONES=C:/newphone.t
  2334. where newphone.t contains
  2335. setup              return
  2336. (other commands may be added as necessary).
  2337.  
  2338. If a comm port other than COM1 is used, the DPORT environment
  2339. variable should be set:
  2340.                             set DPORT=2
  2341.  
  2342. The Online help processor included in ZMODEM.ARC and the
  2343. Professional-YAM User's Manual contain other useful information that
  2344. applies to YAMDEMO.EXE.
  2345.  
  2346. YAMDEMO.EXE unmodified may be copied and used without licensing or
  2347. other liability.  Omen Technology requests that YAMDEMO.EXE be
  2348. distributed only in conjunction with all the files included in
  2349. ZMODEM.ARC, as distributed by Omen, with no files deleted.
  2350.  
  2351.  
  2352.  
  2353. 23.  YMODEM PROGRAMS
  2354.  
  2355. Unix programs supporting the YMODEM protocol are available on
  2356. TeleGodzilla in the "upgrade" subdirectory as RBSB.SHQ (a SQueezed
  2357. shell archive).  Most Unix like systems are supported, including V7,
  2358. Sys III, 4.2 BSD, SYS V, Idris, Coherent, and Regulus.
  2359.  
  2360. A version for VAX-VMS is available in VRBSB.SHQ, in the same
  2361. directory.
  2362.  
  2363. Irv Hoff has added YMODEM 1k packets and YMODEM batch transfers to
  2364. the KMD and IMP series programs, which replace the XMODEM and
  2365. MODEM7/MDM7xx series respectively.  Overlays are available for a
  2366. wide variety of CP/M systems.
  2367.  
  2368. Many other programs, including MEX and MEX-PC also support some of
  2369.  
  2370.  
  2371.  
  2372. Chapter 23              Rev091186 Typeset 9-11-86                       36
  2373.  
  2374.  
  2375.  
  2376.  
  2377.  
  2378.  
  2379.  
  2380. Chapter 23              Rev091186 Typeset 9-11-86                       37
  2381.  
  2382.  
  2383.  
  2384. the YMODEM extensions.
  2385.  
  2386. Questions about YMODEM, the Professional-YAM communications program,
  2387. and requests for evaluation copies may be directed to:
  2388.  
  2389.      Chuck Forsberg
  2390.      Omen Technology Inc
  2391.      17505-V Sauvie Island Road
  2392.      Portland Oregon 97231
  2393.      Voice: 503-621-3406
  2394.      Modem (TeleGodzilla): 503-621-3746
  2395.      Usenet: ...!tektronix!reed!omen!caf
  2396.      Compuserve: 70007,2304
  2397.      Source: TCE022
  2398.  
  2399.                                   Yours very truly,
  2400.  
  2401.  
  2402.  
  2403.  
  2404.  
  2405.  
  2406.  
  2407.  
  2408.  
  2409.  
  2410.  
  2411.  
  2412.  
  2413.  
  2414.  
  2415.  
  2416.  
  2417.  
  2418.  
  2419.  
  2420.  
  2421.  
  2422.  
  2423.  
  2424.  
  2425.  
  2426.  
  2427.  
  2428.  
  2429.  
  2430.  
  2431.  
  2432.  
  2433.  
  2434.  
  2435.  
  2436.  
  2437.  
  2438. Chapter 23              Rev091186 Typeset 9-11-86                       37
  2439.  
  2440.  
  2441.  
  2442.  
  2443.  
  2444.  
  2445.  
  2446.  
  2447.  
  2448.  
  2449.  
  2450.                               CONTENTS
  2451.  
  2452.  
  2453.  1.  INTENDED AUDIENCE............   2
  2454.  
  2455.  2.  EVOLUTION OF ZMODEM.............   2
  2456.  
  2457.  3.  ACKNOWLEDGMENTS..............   4
  2458.  
  2459.  4.  RELATED DOCUMENTS............   4
  2460.  
  2461.  5.  ROSETTA STONE.............   4
  2462.  
  2463.  6.  WHY DEVELOP ZMODEM?.............   5
  2464.  
  2465.  7.  ZMODEM Protocol Design Criteria..........   7
  2466.      7.1    Ease of Use..............   7
  2467.      7.2    Throughput............   7
  2468.      7.3    Integrity and Robustness..........   8
  2469.      7.4    Ease of Implementation.........   8
  2470.  
  2471.  8.  ZMODEM REQUIREMENTS.............   9
  2472.      8.1    File Contents............   9
  2473.  
  2474.  9.  ZMODEM BASICS.............  10
  2475.      9.1    Packetization............  10
  2476.      9.2    Link Escape Encoding...........  10
  2477.      9.3    Header.............  11
  2478.      9.4    Binary Data Subpackets.........  13
  2479.      9.5    ASCII Encoded Data Subpacket.........  14
  2480.  
  2481. 10.  PROTOCOL TRANSACTION OVERVIEW.........  14
  2482.      10.1   Session Startup.............  14
  2483.      10.2   File Transmission...........  15
  2484.      10.3   Session Cleanup.............  17
  2485.      10.4   Session Cancel Sequence...........  17
  2486.  
  2487. 11.  STREAMING TECHNIQUES / ERROR RECOVERY.......  18
  2488.      11.1   Full Streaming with Sampling.........  18
  2489.      11.2   Full Streaming with Reverse Interrupt......  19
  2490.      11.3   Full Streaming with a Sliding Window.......  19
  2491.      11.4   Full Streaming over Error Free Channels.......  19
  2492.      11.5   Segmented Streaming............  20
  2493.  
  2494. 12.  ATTENTION SEQUENCE..............  20
  2495.  
  2496. 13.  FRAME TYPES...............  20
  2497.      13.1   ZRQINIT...............  21
  2498.      13.2   ZRINIT.............  21
  2499.      13.3   ZSINIT.............  21
  2500.      13.4   ZACK...............  21
  2501.  
  2502.  
  2503.  
  2504.                                   - i -
  2505.  
  2506.  
  2507.  
  2508.  
  2509.  
  2510.  
  2511.  
  2512.  
  2513.  
  2514.  
  2515.  
  2516.      13.5   ZFILE..............  21
  2517.      13.6   ZSKIP..............  23
  2518.      13.7   ZNAK...............  23
  2519.      13.8   ZABORT.............  23
  2520.      13.9   ZFIN...............  23
  2521.      13.10  ZRPOS..............  23
  2522.      13.11  ZDATA..............  24
  2523.      13.12  ZEOF...............  24
  2524.      13.13  ZFERR..............  24
  2525.      13.14  ZCRC...............  24
  2526.      13.15  ZCHALLENGE............  24
  2527.      13.16  ZCOMPL.............  24
  2528.      13.17  ZCAN...............  24
  2529.      13.18  ZFREECNT..............  24
  2530.      13.19  ZCOMMAND..............  24
  2531.  
  2532. 14.  SESSION TRANSACTION EXAMPLES..........  25
  2533.      14.1   A simple file transfer.........  25
  2534.      14.2   Challenge and Command Download.......  26
  2535.  
  2536. 15.  ZFILE FRAME FILE INFORMATION..........  26
  2537.  
  2538. 16.  PERFORMANCE RESULTS.............  28
  2539.      16.1   Compatibility............  28
  2540.      16.2   Throughput............  28
  2541.      16.3   Error Recovery...........  29
  2542.  
  2543. 17.  PACKET SWITCHED NETWORK CONSIDERATIONS.........  30
  2544.  
  2545. 18.  PERFORMANCE COMPARISON TABLES.........  31
  2546.  
  2547. 19.  FUTURE EXTENSIONS............  34
  2548.  
  2549. 20.  REVISIONS..............  34
  2550.  
  2551. 21.  MORE INFORMATION.............  35
  2552.  
  2553. 22.  ZMODEM PROGRAMS..............  35
  2554.      22.1   Adding ZMODEM to DOS Programs........  35
  2555.  
  2556. 23.  YMODEM PROGRAMS..............  36
  2557.  
  2558.  
  2559.  
  2560.  
  2561.  
  2562.  
  2563.  
  2564.  
  2565.  
  2566.  
  2567.  
  2568.  
  2569.  
  2570.                                   - ii -
  2571.  
  2572.  
  2573.  
  2574.  
  2575.  
  2576.  
  2577.  
  2578.  
  2579.  
  2580.  
  2581.  
  2582.  
  2583.  
  2584.  
  2585.                              LIST OF FIGURES
  2586.  
  2587.  
  2588. Figure 1.  Order of Bytes in Header...........  12
  2589.  
  2590. Figure 2.  Binary Header.............  12
  2591.  
  2592. Figure 3.  HEX Header.............  13
  2593.  
  2594. Figure 4.  Transmission Time Comparison..........  32
  2595.  
  2596.  
  2597.  
  2598.  
  2599.  
  2600.  
  2601.  
  2602.  
  2603.  
  2604.  
  2605.  
  2606.  
  2607.  
  2608.  
  2609.  
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615.  
  2616.  
  2617.  
  2618.  
  2619.  
  2620.  
  2621.  
  2622.  
  2623.  
  2624.  
  2625.  
  2626.  
  2627.  
  2628.  
  2629.  
  2630.  
  2631.  
  2632.  
  2633.  
  2634.  
  2635.  
  2636.                                  - iii -
  2637.  
  2638.  
  2639.  
  2640.  
  2641.  
  2642.  
  2643.  
  2644.  
  2645.  
  2646.  
  2647.  
  2648.  
  2649.  
  2650.  
  2651.                               LIST OF TABLES
  2652.  
  2653.  
  2654. TABLE 1.  Flow Control Compatibility..........  30
  2655.  
  2656. TABLE 2.  Protocol Overhead Information..........  31
  2657.  
  2658. TABLE 3.  Local Timesharing Computer Download Performance....  32
  2659.  
  2660. TABLE 4.  Protocol Checklist............  33
  2661.  
  2662.  
  2663.  
  2664.  
  2665.  
  2666.  
  2667.  
  2668.  
  2669.  
  2670.  
  2671.  
  2672.  
  2673.  
  2674.  
  2675.  
  2676.  
  2677.  
  2678.  
  2679.  
  2680.  
  2681.  
  2682.  
  2683.  
  2684.  
  2685.  
  2686.  
  2687.  
  2688.  
  2689.  
  2690.  
  2691.  
  2692.  
  2693.  
  2694.  
  2695.  
  2696.  
  2697.  
  2698.  
  2699.  
  2700.  
  2701.  
  2702.                                   - iv -
  2703.  
  2704.  
  2705.  
  2706.  
  2707.  
  2708.  
  2709.  
  2710.  
  2711.  
  2712.      The ZMODEM Asynchronous Inter Application File Transfer Protocol
  2713.  
  2714.                               Chuck Forsberg
  2715.  
  2716.                            Omen Technology Inc
  2717.  
  2718.  
  2719.                                  ABSTRACT
  2720.  
  2721.  
  2722.  
  2723. The ZMODEM file transfer protocol greatly simplifies file transfers
  2724. compared to XMODEM.  In addition to allowing a friendly user interface,
  2725. ZMODEM provides Personal Computer and other users an efficient, accurate,
  2726. robust file transfer method.
  2727.  
  2728. ZMODEM provides efficient file transfers with timesharing systems,
  2729. satellite relays, and wide area packet switched networks.
  2730.  
  2731. ZMODEM provides advanced file management features including AutoDownload
  2732. (Automatic file Download initiated without user intervention), aborted
  2733. transfer recovery, selective file transfers, and security verified command
  2734. downloading.
  2735.  
  2736. ZMODEM is carefully designed to provide these benefits using a minimum of
  2737. new technology beyond XMODEM/CRC.
  2738.  
  2739. ZMODEM protocol features allow implementation on a wide variety of systems
  2740. operating in a wide variety of environments.  A choice of buffering and
  2741. windowing modes allows ZMODEM to operate on systems that cannot support
  2742. other streaming protocols.  Finely tuned control character escaping allows
  2743. operation with real world networks without Kermit's high overhead.
  2744.  
  2745. Although ZMODEM software is more complex than primitive XMODEM routines,
  2746. actual C source code for working ZMODEM programs allows developers to
  2747. provide solid, reliable ZMODEM implementations with minimum effort.
  2748.  
  2749.  
  2750.  
  2751.  
  2752.  
  2753.  
  2754.  
  2755.  
  2756.  
  2757.  
  2758.  
  2759.  
  2760.  
  2761.  
  2762.  
  2763.  
  2764.  
  2765.  
  2766.  
  2767.  
  2768.  
  2769.  
  2770.  
  2771.  
  2772.